home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 46 / Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso / -in_the_mag- / reader_requests / scilab / demos / dialog / dialog.dem
Text File  |  1999-09-16  |  1KB  |  28 lines

  1. x_message(['x_message: Simple example of message ';
  2. 'First row of comments';
  3. 'Second row';
  4. 'etc...';])
  5.  
  6. x_dialog('x_dialog: trial','                ')
  7. x_dialog('Trial           ','3.1592653')
  8. x_dialog(['trial           ';'trial1';'trial2';'trial3';'trial4';..
  9. 'trial6';'trial7'],'[0 1 2 3]')
  10.  
  11. x_message('trial')
  12. x_message(['trial';'trial1';'trial2';'trial3';'trial4';'trial6';'trial7';..
  13. 'trial3';'trial4';'trial6';'trial7';'trial3';'trial4';'trial6';'trial7'])
  14.  
  15. x_choose(['trial';'trial1';'trial2';'trial3';'trial4';'trial7';..
  16. 'trial3';'trial4';'trial6';'trial7';'trial3';'trial4';'trial6'],..
  17. 'selection (click on one item --> returns the item number)')
  18.  
  19. x_mdialog(['here: your message';...
  20.            '(edit the boxes below --> ouput: edited boxes)'],...
  21. ['first row';'second row';'etc...'],...
  22. ['value1';'value2';'value3'])
  23.  
  24. n=5;m=4;mat=rand(n,m);
  25. row='row';labelv=row(ones(1,n))+string(1:n)';
  26. col='col';labelh=col(ones(1,m))+string(1:m)';
  27. new=evstr(x_mdialog('Matrix to edit',labelv,labelh,string(mat)))
  28.